type github.com/jackc/pgx/v5/internal/sanitize.sqlLexer

14 uses

	github.com/jackc/pgx/v5/internal/sanitize (current package)
		sanitize.go#L115: var sqlLexerPool = &pool[*sqlLexer]{
		sanitize.go#L116: 	new: func() *sqlLexer {
		sanitize.go#L117: 		return &sqlLexer{}
		sanitize.go#L119: 	reset: func(sl *sqlLexer) bool {
		sanitize.go#L120: 		*sl = sqlLexer{}
		sanitize.go#L204: type sqlLexer struct {
		sanitize.go#L213: type stateFn func(*sqlLexer) stateFn
		sanitize.go#L215: func rawState(l *sqlLexer) stateFn {
		sanitize.go#L264: func singleQuoteState(l *sqlLexer) stateFn {
		sanitize.go#L288: func doubleQuoteState(l *sqlLexer) stateFn {
		sanitize.go#L314: func placeholderState(l *sqlLexer) stateFn {
		sanitize.go#L333: func escapeStringState(l *sqlLexer) stateFn {
		sanitize.go#L360: func oneLineCommentState(l *sqlLexer) stateFn {
		sanitize.go#L383: func multilineCommentState(l *sqlLexer) stateFn {